home *** CD-ROM | disk | FTP | other *** search
/ Pink Daily - The Pink Days / Pink Daily - The Pink Days.iso / mac / PinkData / RDa3.dir / 00039_Script_39 < prev    next >
Text File  |  1995-08-15  |  456b  |  30 lines

  1. on setVO
  2.   set the volume of sound 1 = 200
  3. end
  4.  
  5. on mainBGM
  6.   if not soundBusy(1) then
  7.     sound playFile 1,"intv.AIF"
  8.     setVO
  9.   end if
  10. end
  11.  
  12. on gameBGM
  13.   if not soundBusy(1) then
  14.     sound playFile 1, "Gamem.AIF"
  15.     setVO
  16.   end if
  17. end
  18.  
  19. on clickSE
  20.   --  puppetSound "SEclick.AIF"
  21.   sound playFile 2,"SEclick.AIF"
  22.   sound stop 1
  23. end
  24.  
  25. on prvtBGM
  26.   if not soundBusy(1) then
  27.     sound playFile 1, "prvt.AIF"
  28.     setVO
  29.   end if
  30. end